home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 2
/
AACD 2.iso
/
AACD
/
Magazine
/
GraphicsCards
/
StormMesa
/
3Dfx
/
demos
/
Makefile
< prev
next >
Wrap
Makefile
|
1998-12-15
|
1KB
|
48 lines
#
# Makefile for the Voodoo demos
#
CC=gcc
LINKER=gcc
#COPTS=-g -m486 -Wall -pipe -I../../include -DFX
COPTS=-O3 -fomit-frame-pointer -m486 -Wall -pipe -I../../include -DFX -DXMESA
LINKOPTS=-L../../lib -L/usr/local/glide/lib -L/usr/X11R6/lib -lglut -lMesaGLU -lMesaGL -lXt -lXi -lXmu -lXext -lX11 -lm
all: tunnel tunnel2 teapot fire terrain paltex glbpaltx gltest ray ipers
ipers: ipers.o image.o
$(LINKER) $(COPTS) $(OBJS) $^ -o $@ $(LINKOPTS)
ray: ray.o
$(LINKER) $(COPTS) $(OBJS) $^ -o $@ $(LINKOPTS)
gltest: gltest.o
$(LINKER) $(COPTS) $(OBJS) $^ -o $@ $(LINKOPTS)
tunnel2: tunnel2.o image.o sources.o
$(LINKER) $(COPTS) $(OBJS) $^ -o $@ $(LINKOPTS)
tunnel: tunnel.o image.o sources.o
$(LINKER) $(COPTS) $(OBJS) $^ -o $@ $(LINKOPTS)
paltex: paltex.o
$(LINKER) $(COPTS) $(OBJS) $^ -o $@ $(LINKOPTS)
glbpaltx: glbpaltx.o
$(LINKER) $(COPTS) $(OBJS) $^ -o $@ $(LINKOPTS)
teapot: teapot.o image.o dteapot.o shadow.o
$(LINKER) $(COPTS) $(OBJS) $^ -o $@ $(LINKOPTS)
fire: fire.o image.o
$(LINKER) $(COPTS) $(OBJS) $^ -o $@ $(LINKOPTS)
terrain: mesaland.o
$(LINKER) $(COPTS) $(OBJS) $^ -o $@ $(LINKOPTS)
clean:
rm -f *.o tunnel tunnel2 teapot fire terrain paltex glbpaltx gltest ray
%.o: %.c
$(CC) -c $(COPTS) $< -o $@